@charset "utf-8";
/* CSS Document */
style
		*{
			margin: 0;
			padding: 0;
			font-family: sans-serif;
			box-sizing: border-box;
		}
		
		body{
			display: flex;
			justify-content: center;
			align-items: center;
			min-height: 100vh;
			background: rgba(108,200,76,1.00);
			
			}
		.card{
			position: relative;
			background: rgba(255,255,255,1.00);
			border: 1px solid rgba(242,242,242,1.00);
			box-shadow: 0 5px 10px rgba(0,0,1);
			padding: 40px 35px;
			width: 700px;
			overflow: hidden;
	}
		.col-1{
			width: 100px;
			float:left;
		}
		.col-2 img{
			height: 650px;
			float: right;
			box-shadow: 0 5px 10px rgba(0,0,1);
			
		}
		
	
		.recipe-name{
			
			color: indianred;
			font-size: 40px;
			text-transform: uppercase;
			margin: 10px;
			letter-spacing: 5px;
			font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
		}
		.discription{
			font-size: 17px;
			margin: 15px 0;
			
		}
		.recipe-ingredients{
			margin:5px;
		}
		.recipe-instructions{
			margin: 5px;
		}
	
